home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / libvte9 / window < prev   
Text File  |  2009-10-02  |  524b  |  29 lines

  1. #!/bin/sh
  2. #
  3. #  Window manipulation.
  4. #
  5. if [ "$#" -eq 0 ] ; then
  6.     echo usage: `basename $0` 'task [...]'
  7.     echo tasks:
  8.     echo "    1    deiconify"
  9.     echo "    2    iconify"
  10.     echo "    3 x y    move window to (x, y) pixels"
  11.     echo "    4 h w    resize window to (w, h) pixels"
  12.     echo "    5    raise"
  13.     echo "    6    lower"
  14.     echo "    7    refresh"
  15.     echo "    8 h w    resize text area to (w, h) cells"
  16.     echo "    9 0    unmaximize"
  17.     echo "    9 1    maximize"
  18.     exit
  19. fi
  20. args=
  21. for arg in $@ ; do
  22.     if [ "$args" = "" ] ; then
  23.         args="$arg"
  24.     else
  25.         args="$args;$arg"
  26.     fi
  27. done
  28. printf ""${args}t
  29.